Configure Icon

All Planes On

Overview

The All Planes On command provides a quick and reliable way to turn on (make visible) all work planes in the selected Inventor component. This is especially useful for inspecting, editing, or troubleshooting the geometric relationships and construction features within your part or assembly.

When executed, the command iterates through all work planes in the selected component and sets their visibility to on. If your document includes the parameter ShowPlanes, it will be set to True. This parameter is used throughout Assembly Tools components to trigger additional logic when planes are toggled, allowing for advanced automation and customization.

Most users will not need to manually toggle plane visibility after running this command, as it ensures all work planes are visible. However, if you have specific planes that should always remain hidden, you can add a rule to your component to turn those planes off as needed. For example, if you have a work plane named “never turn on,” you can set its visibility in your rule: ThisDoc.Document.ComponentDefinition.WorkPlanes("never turn on").Visible = False

All Planes On is ideal for individual components or assemblies where manual toggling would be time-consuming. It helps maintain a clear visual environment and supports automated workflows that depend on the ShowPlanes parameter.

How It Works

  1. Iterates through all work planes in the selected component.
  2. Sets the visibility of every work plane to on (visible).
  3. If the ShowPlanes parameter exists, it is set to True.
  4. Custom rules in components can override the default behavior for specific planes.

Usage Instructions

  1. Select the target component or part.
  2. Click the All Planes On button in the Configure panel.
  3. All work planes in the selected component will be made visible.
  4. If you want to keep a specific plane hidden, add a rule to your component to set its visibility as needed.

Troubleshooting

  1. If some planes remain hidden, check for custom rules in your component that may override the default behavior.
  2. Ensure the ShowPlanes parameter exists if you want to use it for additional logic.
  3. Review your component rules for any logic that may affect plane visibility.

Examples

  1. Show all planes in a component: Run the command to make all work planes visible in the selected component.
  2. Override visibility for a specific plane: If you have a work plane named “never turn on,” you can keep it hidden by adding a rule such as: ThisDoc.Document.ComponentDefinition.WorkPlanes("never turn on").Visible = False

Related Commands

  1. All Planes On All Nested
  2. All Planes Off All
  3. Planes Toggle
  4. Configure

Assembly Tool Suites